home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdio / old / vfprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-10  |  160 b   |  9 lines

  1. #include <stdio.h>
  2.  
  3. int _printf(void *,int (),const char *,va_list);
  4.  
  5. int vfprintf(FILE *f,const char *fmt,va_list vl)
  6. {
  7.     return(_printf(f,fputc,fmt,vl));
  8. }
  9.